home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global visible_g
- if visible_g = 0 then
- set tempVisible to 0
- repeat with n = 11 to 18
- if rollOver(n) then
- set the visible of sprite n to 1
- set tempVisible to n
- updateStage()
- exit repeat
- end if
- end repeat
- set visible_g to tempVisible
- else
- if rollOver(visible_g) = 0 then
- set the visible of sprite visible_g to 0
- set tempVisible to 0
- repeat with n = 11 to 18
- if rollOver(n) then
- set the visible of sprite n to 1
- set tempVisible to n
- updateStage()
- exit repeat
- end if
- end repeat
- set visible_g to tempVisible
- end if
- end if
- go(the frame)
- end
-